if 文法
if文による文によるエラー処理、バリデーション処理
code:if.js
let isLogin:Boolean;
// △
if(isLogin ===true){
//LongCode
}else{
//ShortCode
}
// Better
if(!isLogin ===true){
//ShortCode
}
//LongCode